home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / aoffset.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  967 b   |  30 lines

  1. .TH AOFFSET
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. AOFFSET
  5.  
  6.  
  7.  
  8.  CurveType AOFFSET( CurveType Crv, NumericType OffsetDistance,
  9.                     NumericType Epsilon, NumericType TrimLoops,
  10.                     NumericType BezInterp )
  11.  
  12. Computes an offset of OffsetDistance with globally bounded error
  13. (controlled by Epsilon). The smaller Epsilon is, the better
  14. the approximation to the offset. The bounded error is achieved by adaptive
  15. refinement of the Crv.
  16. If TrimLoops is TRUE or on, the regions of the object that
  17. self-intersect as a result of the offset operation are trimmed away.
  18. If BezInterp is TRUE, each curve's segment is interpolated instead
  19. of approximated.
  20.  
  21. Example:
  22.  
  23.     OffCrv1 = AOFFSET( Crv, 0.5, 0.01, FALSE, FALSE );
  24.     OffCrv2 = AOFFSET( Crv, 0.5, 0.01, TRUE, FALSE );
  25.  
  26. computes an adaptive offset to Crv with OffsetDistance of
  27. 0.5 and Epsilon of 0.01 and trims the self-intersection loops in
  28. the second instrance.
  29. See also OFFSET, LOFFSET, and MOFFSET.
  30.